home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / MacOS 8 Resources / Developer Tools / Mac OS 8 Interfaces & Libraries / Interfaces / IDLIncludes / TextObjects.idl < prev    next >
Text File  |  1996-05-01  |  2KB  |  86 lines

  1. /*
  2.      File:        TextObjects.idl
  3.  
  4.      Contains:    Text object Interfaces.
  5.  
  6.      Version:    Technology:    System 8
  7.                  Release:    Universal Interfaces 3.0d3 on Copland DR1
  8.  
  9.      Copyright:    © 1984-1996 by Apple Computer, Inc.  All rights reserved.
  10.  
  11.      Bugs?:        If you find a problem with this file, send the file and version
  12.                  information (from above) and the problem description to:
  13.  
  14.                      Internet:    apple.bugs@applelink.apple.com
  15.                      AppleLink:    APPLE.BUGS
  16.  
  17. */
  18. #ifndef __TEXTOBJECTS_IDL__
  19. #define __TEXTOBJECTS_IDL__
  20.  
  21. #include <somobj.idl>
  22. #include <somcls.idl>
  23.  
  24. #ifndef __CONDITIONALMACROS_IDL__
  25. #include <ConditionalMacros.idl>
  26. #endif
  27. #ifndef __TYPES_IDL__
  28. #include <Types.idl>
  29. #endif
  30. #ifndef __UNICODE_IDL__
  31. #include <Unicode.idl>
  32. #endif
  33. #ifndef __TEXTCOMMON_IDL__
  34. #include <TextCommon.idl>
  35. #endif
  36.  
  37. #ifdef __SOMIDL__
  38.  
  39. #if FOR_SYSTEM7_AND_SYSTEM8_PREEMPTIVE
  40. /* Basic data types */
  41. typedef UInt32                    TextObjectUnit;
  42.  
  43. typedef OpaquePtr                TextObject;                    /* Substituted OpaquePtr for ``TextObjectUnit*'' */
  44.  
  45. typedef OpaquePtr                TextObjectPtr;                /* Substituted OpaquePtr for ``TextObject*'' */
  46.  
  47. typedef OpaquePtr                ConstTextObject;            /* Substituted OpaquePtr for ``TextObjectUnit*'' */
  48.  
  49. /* Indices into text objects */
  50. typedef UInt32                    TextObjectIndex;
  51.  
  52. /* Option flags */
  53. typedef OptionBits                TextObjectOptions;
  54.  
  55. /*
  56.  The default or standard OptionBits are all zero by convention. The following
  57.    symbolic constant is provided for code readability. 
  58. */
  59. /* Creation and destruction */
  60. /* Text content manipulation */
  61. /* Text object information */
  62. /* This is equivalent to the preceding function. The preceding name is preferred. */
  63. /* Bulk access to text content */
  64. typedef SOMLargeStruct            TextObjectTextInfo;            /* Derived from a struct of 24 bytes in size */
  65.  
  66. /* Comparison functions are in TextUtils */
  67. /* Annotations */
  68. /* Annotation types are given by the traditional four-character codes */
  69. typedef FourCharCode            TextObjectAnnotationTag;
  70.  
  71. /* A wildcard tag to specify all annotations */
  72. /* Annotation attributes */
  73. typedef OptionBits                TextObjectAnnotationAttributes;
  74.  
  75. /* Annotation attribute bits */
  76. /* Accessing annotations */
  77. typedef SOMLargeStruct            TextObjectAnnotationInfo;    /* Derived from a struct of 24 bytes in size */
  78.  
  79. /* Miscellaneous */
  80. #endif
  81.  
  82. #endif /* __SOMIDL__ */
  83.  
  84. #endif /* __TEXTOBJECTS_IDL__ */
  85.  
  86.